The goal of this project in accordance with the stakeholder (Sponsor: Veloxxity LLC) requirements is to develop a sustainable and interactive sentiment analysis that collects viral posts with regards to the international conflicts in the South China Sea. The application will be deployed as a Representational state transfer (REST) API with the objective of providing a solution to the distribution of misinformation on online social media platforms.
import tweepy
from tweepy import OAuthHandler
from textblob import TextBlob
import plotly.graph_objects as go
class TwitterClient(object):
def __init__(self):
# attempt authentication
try:
apiKey = '1oILHQ7zAdvdu1XaJoAZkvUY7'
apiSecret = 'j449aCLnyKJhqTU84PB2AarTdAw9CWhLcUc0iBMZjm2veKfk8o'
accessToken = '1214015320395960320-CQBr65Cno6XjDL2wlnSThYx7R516BZ'
accessSecret = 'I63R3znoVQLPEM79i1laSJzjbmLOKLlKP97hN0VvvzLkI'
# create OAuthHandler object
self.auth = OAuthHandler(apiKey, apiSecret)
# set access token and secret
self.auth.set_access_token(accessToken , accessSecret)
# create tweepy API object to fetch tweets
self.api = tweepy.API(self.auth)
except:
print("Error: Authentication Failed")
def getSentiment(self, tweet):
# create TextBlob object of passed tweet text
analysis = TextBlob(tweet)
# set sentiment
if analysis.sentiment.polarity > 0:
return 'positive'
elif analysis.sentiment.polarity < 0:
return 'negative'
def get_tweets(self, query, count = 10):
# empty list to store parsed tweets
tweets = []
try:
# call twitter api to fetch tweets
fetched_tweets = self.api.search_tweets(q = query, count = count)
# parsing tweets one by one
for tweet in fetched_tweets:
# empty dictionary to store required params of a tweet
parsed_tweet = {}
# saving text of tweet
parsed_tweet['text'] = tweet.text
# saving sentiment of tweet
parsed_tweet['sentiment'] = self.getSentiment(tweet.text)
# appending parsed tweet to tweets list
if tweet.retweet_count > 0:
# if tweet has retweets, ensure that it is appended only once
if parsed_tweet not in tweets:
tweets.append(parsed_tweet)
else:
tweets.append(parsed_tweet)
# return parsed tweets
return tweets
except tweepy.TweepError as e:
print("Error : " + str(e))
def main():
# create TwitterClient object
api = TwitterClient()
# calling function to get tweets
tweets = api.get_tweets(query = 'South China Sea', count = 200)
# put positive tweets and negative tweets in lists
ptweets = [tweet for tweet in tweets if tweet['sentiment'] == 'positive']
ntweets = [tweet for tweet in tweets if tweet['sentiment'] == 'negative']
#dislaying them on a plotly pie chart
fig = go.Figure(data=[go.Pie(labels=['Positive Tweets','Negative Tweets'], values=[len(ptweets), len(ntweets)])])
fig.update_layout(title_text="Proportion of Positive and Negative Tweets on the South China Sea")
fig.show()
if __name__ == "__main__": main()
import json
from googleapiclient.discovery import build
#api key
api_key = 'AIzaSyArFAmY2zwzGNMUZz8m7z4CcNCCHlIFpr8'
#Channel id located at the end of the url
channel_id = 'UC4sf8XtH_uXnwNP699luQVQ'
#build the service object
youtube = build('youtube','v3', developerKey=api_key)
request = youtube.channels().list( part='statistics', id=channel_id)
response = request.execute()
print(response)
{'kind': 'youtube#channelListResponse', 'etag': 'Oau9E6oxta0VytV0pfZRm0sNNvQ', 'pageInfo': {'totalResults': 1, 'resultsPerPage': 5}, 'items': [{'kind': 'youtube#channel', 'etag': 'ec4ehtrSP1hXEVGPZH62tlalR7E', 'id': 'UC4sf8XtH_uXnwNP699luQVQ', 'statistics': {'viewCount': '100891591', 'subscriberCount': '1150000', 'hiddenSubscriberCount': False, 'videoCount': '250'}}]}
%run utils.py
%run search_by_keyword.py
Enter your topic: honey roasted pork
Title: Slow Roasted Honey Glazed Pork
Description: Here is what you'll need:
Ingredients:
1 1/2 lbs Baby Potatoes, red and/or yellow
8 Small Carrots, snapped in half
12-15 Pearl Onions, peeled & ends cut off
3 1/2 lb. Beef Chuck Roast
Salt, to taste
Pepper, to taste
1 Tbsp. Corn Starch
2 Tbsp. Water
2 Tbsp. Worcestershire Sauce
2 sprigs Rosemary
2 sprigs Thyme
Optional:
1 Baguette, cut into 5 inch pieces
Instructions:
In a slow cooker, add the potatoes, carrots and onions to make a base for the meat. Lay the chuck roast on top of the veggies and season with salt and pepper on both sides. (Wash your hands!) Mix cornstarch and water until well combined and pour close to the edge so it gets down to the veggies. Pour Worcestershire sauce directly on top of the meat. Cover with the slow cooker lid and cook on high for 5 hours. Place the rosemary and thyme sprigs on top of the meat and cook for 1 more hour. Remove rosemary and thyme. Using a fork, shred the meat and serve by itself with the veggies, or on top of bread for a sandwich! The juices from the bottom of the slow cooker make for an AMAZING dipping sauce! Enjoy!
All music provided by Audio Network and Warner Chappell Inc. Used with permission
Channel Title: Tasty
Publish time: 2016-04-10T21:00:01Z
Duration: 1:9
Number of comments: 245
Number of likes: 9889
Number of dislikes: 155
Number of views: 943085
p9mv7FQk-PU
Comment: Ingredients<br>1 cup plus 2 Tbsp. soy sauce, divided<br>¼ cup granulated sugar<br>3 Tbsp. chopped garlic<br>¼ cup chopped scallions<br>2–3 pounds boneless, skin-on pork shoulder <br>1 bunch asparagus, halved<br>6 Yukon potatoes, diced<br>2 Tbsp. olive oil<br>Kosher salt<br>Freshly ground black pepper<br>1 cup packed dark brown sugar<br>½ cup honey
Likes: 42
Updated At: 2016-04-12T02:13:18Z
==================================
Sentiment(polarity=-0.15833333333333333, subjectivity=0.4166666666666667)
Sentiment(polarity=-0.15833333333333333, subjectivity=0.4166666666666667, assessments=[(['black'], -0.16666666666666666, 0.43333333333333335, None), (['dark'], -0.15, 0.4, None)])
Comment: Just cooked this and it came out perfect. Adjusted time according to my meat thermometer, but no issues with the meat being undercooked at 165. So juicy and tender. I also added baby tomatoes, eggplant and mushrooms to my mixed of vegetables. Best meal I've had in a while.
Likes: 29
Updated At: 2016-08-07T09:28:24Z
==================================
Sentiment(polarity=0.6666666666666666, subjectivity=0.5166666666666667)
Sentiment(polarity=0.6666666666666666, subjectivity=0.5166666666666667, assessments=[(['perfect'], 1.0, 1.0, None), (['mixed'], 0.0, 0.25, None), (['best'], 1.0, 0.3, None)])
Comment: This is absolutly fabulous!!! Just thinking about it makes my mouth water!!!
Likes: 6
Updated At: 2016-04-11T08:52:45Z
==================================
Sentiment(polarity=1.0, subjectivity=1.0)
Sentiment(polarity=1.0, subjectivity=1.0, assessments=[(['fabulous', '!', '!', '!', '!', '!', '!'], 1.0, 1.0, None)])
Comment: I'm curious- how do you cook asparagus and potatoes for a total of an hour and twenty minutes but they aren't burned in the video?
Likes: 32
Updated At: 2016-09-21T21:45:24Z
==================================
Sentiment(polarity=-0.05, subjectivity=0.875)
Sentiment(polarity=-0.05, subjectivity=0.875, assessments=[(['curious'], -0.1, 1.0, None), (['total'], 0.0, 0.75, None)])
==================================================
Title: Honey-Glazed Pork Roast (Easy Than You Think!)
Description: An incredibly flavorful pork dinner requires just 25 minutes of hands-on time and earns you major presentation points when you serve it with a honey-lime glaze you made during roasting.
Subscribe to the Better Homes and Gardens Channel: http://www.youtube.com/subscription_center?add_user=bhg
Official Better Homes and Gardens Website: http://www.bhg.com/
Facebook: https://www.facebook.com/mybhg
Twitter: http://twitter.com/bhg
Pinterest: http://pinterest.com/bhg/
GooglePlus: https://plus.google.com/114700401799581477045/posts
Instagram: http://instagram.com/betterhomesandgardens#
Channel Title: Better Homes and Gardens
Publish time: 2015-11-19T14:00:00Z
Duration: 2:29
Number of comments: 1
Number of likes: 65
Number of dislikes: 8
Number of views: 16966
7UcdHlnS2Qg
Comment: lovely
Likes: 0
Updated At: 2017-02-19T16:57:41Z
==================================
Sentiment(polarity=0.5, subjectivity=0.75)
Sentiment(polarity=0.5, subjectivity=0.75, assessments=[(['lovely'], 0.5, 0.75, None)])
==================================================
Title: Honey Roasted Pork Belly 蜜汁五花肉
Description: Honey roasted pork belly
500g pork belly (around 1 pound)
Honey water for brushing (1 tablespoon honey + 1 tablespoon marinating sauce)
2 garlic clove, sliced
1 spring onion
2 ginger slices
1 tablespoon honey
1 tablespoon cooking wine
1 tablespoon light soy sauce
1 teaspoon dark soy sauce
1 tablespoon oyster sauce
1 tablespoon hoisin sauce
1/4 teaspoon five-spicy powder
1/4 white pepper
printable recipe at http://www.chinasichuanfood.com/roasted-pork-belly-with-honey/
Channel Title: Elaine Luo
Publish time: 2016-09-14T01:51:18Z
Duration: 3:45
Number of comments: 11
Number of likes: 281
Number of dislikes: 9
Number of views: 37836
pVSzqtCCSh0
Comment: Love the presentation!!! Looks amazing 😍
Likes: 0
Updated At: 2020-06-22T14:49:08Z
==================================
Sentiment(polarity=0.78828125, subjectivity=0.75)
Sentiment(polarity=0.78828125, subjectivity=0.75, assessments=[(['love', '!', '!', '!'], 0.9765625, 0.6, None), (['amazing'], 0.6000000000000001, 0.9, None)])
Comment: I've been wanting to try making pork belly. This looks delicious & thanks for this recipe.
Likes: 2
Updated At: 2017-07-04T06:33:23Z
==================================
Sentiment(polarity=0.6, subjectivity=0.6)
Sentiment(polarity=0.6, subjectivity=0.6, assessments=[(['delicious'], 1.0, 1.0, None), (['thanks'], 0.2, 0.2, None)])
Comment: I love the music too, btw💖
Likes: 0
Updated At: 2020-06-22T14:49:37Z
==================================
Sentiment(polarity=0.5, subjectivity=0.6)
Sentiment(polarity=0.5, subjectivity=0.6, assessments=[(['love'], 0.5, 0.6, None)])
Comment: 有沒有中文解說的呢
Likes: 0
Updated At: 2017-06-11T03:31:55Z
==================================
Sentiment(polarity=0.0, subjectivity=0.0)
Sentiment(polarity=0.0, subjectivity=0.0, assessments=[])
==================================================
Title: Honey Roasted Pork Recipe หมูอบนำ้ผึ้ง - Hot Thai Kitchen
Description: My mom came up with this recipe when I was a kid and I've been hooked on it ever since. Tender, juicy roasted pork tenderloin with a sweet-salty sauce, it's great over rice or noodles! Serve it with noodles, over rice, mashed potatoes, or even in a sandwich!
JOIN US ON PATREON FOR BONUS CONTENT: https://www.patreon.com/pailinskitchen
MY KITCHEN TOOLS & INGREDIENTS: https://kit.co/hotthaikitchen
WRITTEN RECIPE: https://hot-thai-kitchen.com/honey-roasted-pork-tenderloin/
MY COOKBOOK: https://hot-thai-kitchen.com/htk-cookbook/
CONNECT WITH ME!
https://facebook.com/HotThaiKitchen
https://instagram.com/HotThaiKitchen
https://twitter.com/HotThaiKitchen
https://www.pinterest.com/hotthaikitchen
About Pai:
Pailin “Pai” Chongchitnant is the author of the Hot Thai Kitchen cookbook, co-host of a Canadian TV series One World Kitchen on Gusto TV, and creator and host of the YouTube channel Pailin's Kitchen.
Pai was born and raised in southern Thailand where she spent much of her "playtime" in the kitchen. She traveled to Canada to study Nutritional Sciences at the University of British Columbia, and was later trained as a chef at Le Cordon Bleu culinary school in San Francisco.
After working in both Western and Thai professional kitchens, she decided that her passion really lies in educating and empowering others to cook at home via YouTube videos, her cookbook, and cooking classes. She currently lives in Vancouver, and goes to Thailand every year to visit her family. Visit her at http://hot-thai-kitchen.com
#ThaiFood #ThaiRecipes #AsianRecipes
Channel Title: Pailin's Kitchen
Publish time: 2015-04-10T18:00:00Z
Duration: 6:39
Number of comments: 61
Number of likes: 1256
Number of dislikes: 16
Number of views: 72815
ylYSflss5MI
Comment: HELLO LOVELY VIEWERS! Important Note:<br><br>If you have questions about this recipe, you can post it here for the community to answer. But if you want to ask me, please get in touch via Facebook, Twitter, Instagram or my website (all links are in the description above). If you leave questions in the comments I may not see them due to the large volume of comments I receive across the hundreds of videos on this channel.<br><br>Also, before sending on any questions be sure to read the written recipe on the website as I often add extra tips and notes not covered in the video.<br><br>Thank you for watching!
Likes: 0
Updated At: 2019-08-03T18:47:21Z
==================================
Sentiment(polarity=0.23061224489795915, subjectivity=0.5203514739229025)
Sentiment(polarity=0.23061224489795915, subjectivity=0.5203514739229025, assessments=[(['lovely', '!'], 0.625, 0.75, None), (['important'], 0.4, 1.0, None), (['above'], 0.0, 0.1, None), (['due'], -0.125, 0.375, None), (['large'], 0.21428571428571427, 0.42857142857142855, None), (['sure'], 0.5, 0.8888888888888888, None), (['extra', '!'], 0.0, 0.1, None)])
Comment: Started watching your videos a few days ago. I'm very impressed! I've learned some Korean cooking but this recipe will be my first venture into Thai. I'm very excited:)
Likes: 5
Updated At: 2017-01-19T23:11:19Z
==================================
Sentiment(polarity=0.40750000000000003, subjectivity=0.6816666666666666)
Sentiment(polarity=0.40750000000000003, subjectivity=0.6816666666666666, assessments=[(['few'], -0.2, 0.1, None), (['very', 'impressed', '!'], 1.0, 1.0, None), (['first'], 0.25, 0.3333333333333333, None), (['very', 'excited'], 0.48750000000000004, 0.9750000000000001, None), ([':)'], 0.5, 1.0, 'mood')])
Comment: That looks great! I also really love how you mentioned that they should wait until the marinade is back to a boil before tasting. Gotta watch out for newbies!
Likes: 1
Updated At: 2015-04-12T14:49:16Z
==================================
Sentiment(polarity=0.5, subjectivity=0.45)
Sentiment(polarity=0.5, subjectivity=0.45, assessments=[(['great', '!'], 1.0, 0.75, None), (['really', 'love'], 0.5, 0.6, None), (['back', '!'], 0.0, 0.0, None)])
Comment: Wowwwwwww this is the most amazing pork loin I have ever had. I cooked iit n a pan as I did not want to turn the oven. It was amazing the caramalization and the taste it developed. I believe the sucess of cooking pork loin is cutting as you did by the lenght therefore creating more surface area. This will really become also one of our real favorites, tks Pailin
Likes: 2
Updated At: 2018-11-16T17:53:25Z
==================================
Sentiment(polarity=0.2625, subjectivity=0.5624999999999999)
Sentiment(polarity=0.2625, subjectivity=0.5624999999999999, assessments=[(['most'], 0.5, 0.5, None), (['amazing'], 0.6000000000000001, 0.9, None), (['amazing'], 0.6000000000000001, 0.9, None), (['developed'], 0.1, 0.3, None), (['cutting'], -0.6, 0.9, None), (['more'], 0.5, 0.5, None), (['really'], 0.2, 0.2, None), (['real'], 0.2, 0.30000000000000004, None)])
==================================================
Title: Easy Honey Glazed Pork | Sticky Honey Pork | Best Recipe for Honey Pork
Description: Looking for a quick and easy pork recipe? This honey glazed sticky pork recipe will make your day! This will cost you only three simple steps.
Servings: 3 People
Ingredients:
-SECTION A-
300g Diced Pork
15g Corn Flour
1 tbsp Soy Sauce
1/2 tbsp Oyster Sauce (Optional)
1/4 tsp Baking Powder
1/2 tbsp Vinegar
1/2 tsp Salt
1/2 tsp Pepper
-SECTION B-
2 tbsp Cooking Oil or Olive Oil
15g Garlic (Three Cloves)
4g Ginger (Half Thumb Size)
1/2 cup Water
1 tbsp Soy Sauce
1/2 tbsp Honey or Date Syrup (Substitute 1/2 tbsp of Brown Sugar)
1/2 tsp Salt
1/2 tbsp Chilli Flakes (Optional or Increase if you want spicy)
1/4 tbsp Chilli Powder or Paprika to bring up color (Optional)
Directions:
- STEP 1-
Mix all the ingredients from SECTION A in a bowl and let it marinate for 2 hours in the refrigerator.
- STEP 2 -
Get the Marinated Pork from STEP 1. Fill a Pan of Cooking Oil. Deep fry the Pork in MEDIUM HEAT until it is Light Golden Brown (80% fried). Then let it drain. Deep fry the pork again in HIGH HEAT until it is Dark Golden Brown (100% Fried)
- STEP 3 -
This is where you use Ingredients from SECTION A. Put 2 tbsp of Cooking oil in to a wider pan. Then add the Garlic and Ginger. Saute them until the fragrance, don't let it reach the golden color. Then add water and simmer for a while. Then add Soy Sauce, Honey, Salt, Chilli Flakes. Let it simmer and reduce upto half the volume until the sauce is thick and look AMAZING. Then add the fried pork from STEP2 and mix well.
Serve, Have Fun!
We Are:
A Channel that offer you fun and easy recipes that any one can try out. You will find out best quick, easy and affordable to make recipes in a simple manner
Subscribe: https://www.youtube.com/channel/UCWJP_YotbtkCbWfnV4YndtA
Find Us:
facebook: https://www.facebook.com/hotpot.cooking.channel
Channel Title: Hot Pot
Publish time: 2020-04-15T06:30:05Z
Duration: 2:31
Number of comments: 40
Number of likes: 898
Number of dislikes: 32
Number of views: 74288
k8cwzYATqHg
Comment: This is my fourth time doing this recipe in the past month coz I made it and everyone's obsessed
Likes: 13
Updated At: 2020-11-14T14:09:13Z
==================================
Sentiment(polarity=-0.25, subjectivity=0.4166666666666667)
Sentiment(polarity=-0.25, subjectivity=0.4166666666666667, assessments=[(['fourth'], 0.0, 0.0, None), (['past'], -0.25, 0.25, None), (['obsessed'], -0.5, 1.0, None)])
Comment: Delicious! I made this dish for my dinner and it was great. I loved it and would really recommend it. It was really easy too! I would say it is in my top 10 dinners now and I will definitely make it again. I don't usually like pork but now after trying this. I would order it in a restaurant.
Likes: 4
Updated At: 2021-09-26T17:33:40Z
==================================
Sentiment(polarity=0.4364583333333334, subjectivity=0.6041666666666667)
Sentiment(polarity=0.4364583333333334, subjectivity=0.6041666666666667, assessments=[(['delicious', '!'], 1.0, 1.0, None), (['great'], 0.8, 0.75, None), (['loved'], 0.7, 0.8, None), (['really'], 0.2, 0.2, None), (['really', 'easy', '!'], 0.5416666666666667, 0.8333333333333334, None), (['top'], 0.5, 0.5, None), (['definitely'], 0.0, 0.5, None), (['usually'], -0.25, 0.25, None)])
Comment: Just tried this recipe. It was easy and the pork turned out amazing
Likes: 4
Updated At: 2020-11-09T17:03:37Z
==================================
Sentiment(polarity=0.5166666666666667, subjectivity=0.8666666666666667)
Sentiment(polarity=0.5166666666666667, subjectivity=0.8666666666666667, assessments=[(['easy'], 0.43333333333333335, 0.8333333333333334, None), (['amazing'], 0.6000000000000001, 0.9, None)])
Comment: This is great!
Likes: 5
Updated At: 2020-04-15T13:48:07Z
==================================
Sentiment(polarity=1.0, subjectivity=0.75)
Sentiment(polarity=1.0, subjectivity=0.75, assessments=[(['great', '!'], 1.0, 0.75, None)])
==================================================
Title: Honey Glazed Pork Roast Leg
Description: Honey glazed pork roast leg is easy and delicious. In this video we show you how to make the glaze which consists of a blend of honey, brown sugar, and maple syrup. Some people may find it difficult to locate maple syrup, however. If this is the case, you can simply leave it out. We also provide you with cooking times and glazing instructions.
If you have special ingredients that you like, you can substitute or add them.You're best to buy the pork leg from your local butcher. You can instruct him or her on the size you would like. It easiest for them to remove the skin. You can also instruct them on how much fat you want left on the meat. It is best to leave about a centimeter on. For the full recipe, please visit: https://cooknshare.com/recipe/honey-glazed-pork-roast-leg/
All photographs and video properties are original productions of, created by, and exclusive property of Cook n' Share. Cook n' Share is owned and operated by David Hood. I am submitting the on behalf of myself.
Short Intro Clip: Guitar Logo
LICENSE CERTIFICATE : Envato Marketplace Item
==============================================
This document certifies the purchase of:
ONE REGULAR LICENSE
as defined in the standard terms and conditions on the Envato Marketplaces.
Licensor's Author Username: Pavel_Nest
Licensee: David Hood -- Cook n' Share
For the item: Guitar Logo
http://audiojungle.net/item/guitar-logo/4301501
Item ID: 4301501
Item Purchase Code: 5bb4a191-3ed7-4623-8dc6-cf9b170dda89
Purchase Date: 2013-10-02 08:54:49 UTC
For any queries related to this document or license please contact Envato Support via http://support.envato.com/index.php?/Live/Tickets/Submit
Envato Pty. Ltd. (ABN 11 119 159 741)
PO Box 21177, Little Lonsdale Street, VIC 8011, Australia
Music (Intro): Happy Acoustic
LICENSE CERTIFICATE : Envato Marketplace Item
==============================================
This document certifies the purchase of: ONE REGULAR LICENSE as defined in the standard terms and conditions on the Envato Marketplaces.
Licensor's Author Username: ilyatruhanov
Licensee: David Hood -- Cook n' Share
For the item: Happy Acoustic
http://audiojungle.net/item/happy-acoustic/4751239
Item ID: 4751239
Item Purchase Code: 9c2e30cd-c58b-4320-a708-e9ce0abb4b3b
Purchase Date: 2013-07-11 09:40:46 UTC
For any queries related to this document or license please contact Envato Support via http://support.envato.com/index.php?/Live/Tickets/Submit
Envato Pty. Ltd. (ABN 11 119 159 741)
PO Box 21177, Little Lonsdale Street, VIC 8011, Australia
This document certifies the purchase of:
ONE REGULAR LICENSE
as defined in the standard terms and conditions on the Envato Marketplaces.
Licensor's Author Username: audiostar
Licensee: david hood
For the item:
Good Times
http://audiojungle.net/item/good-times/2084962
Item ID: 2084962
Item Purchase Code: dec7572c-339e-4a61-8389-8247f647db80
Purchase Date: 2013-07-02 08:58:10 UTC
For any queries related to this document or license please contact Envato Support via http://support.envato.com/index.php?/Live/Tickets/Submit
Envato Pty. Ltd. (ABN 11 119 159 741)
PO Box 16122, Collins Street West, VIC 8007, Australia
Channel Title: TheCooknShare
Publish time: 2013-12-27T11:02:59Z
Duration: 3:56
Number of comments: 36
Number of likes: 547
Number of dislikes: 29
Number of views: 90075
-d8m-r0bTe4
Comment: Hi dave that roast looks wonderful. I love the glaze. Perfect for New Years lunch. Thank you
Likes: 0
Updated At: 2013-12-27T11:34:33Z
==================================
Sentiment(polarity=0.6590909090909091, subjectivity=0.7636363636363637)
Sentiment(polarity=0.6590909090909091, subjectivity=0.7636363636363637, assessments=[(['wonderful'], 1.0, 1.0, None), (['love'], 0.5, 0.6, None), (['perfect'], 1.0, 1.0, None), (['new'], 0.13636363636363635, 0.45454545454545453, None)])
Comment: I like all of your recipes. they are mouth-watering! greetings from Turkey =)
Likes: 0
Updated At: 2014-03-14T11:47:21Z
==================================
Sentiment(polarity=0.6875, subjectivity=0.975)
Sentiment(polarity=0.6875, subjectivity=0.975, assessments=[(['mouth-watering', '!'], 0.875, 0.95, None), (['=)'], 0.5, 1.0, 'mood')])
Comment: of all the video i watch your the best cooking video coz its simple , easy and very short time only nice job :)
Likes: 0
Updated At: 2013-12-28T04:04:33Z
==================================
Sentiment(polarity=0.3619047619047619, subjectivity=0.6972108843537416)
Sentiment(polarity=0.3619047619047619, subjectivity=0.6972108843537416, assessments=[(['best'], 1.0, 0.3, None), (['simple'], 0.0, 0.35714285714285715, None), (['easy'], 0.43333333333333335, 0.8333333333333334, None), (['very', 'short'], 0.0, 0.39, None), (['only'], 0.0, 1.0, None), (['nice'], 0.6, 1.0, None), ([':)'], 0.5, 1.0, 'mood')])
Comment: I am happy you mentioned where I can pick up the gloves..... at the spice section of my local supermarket lol.<br>I was looking for them at the pharmacy .....pills section. <br>and BTW, why so much all kind of sugar? are you making pork pudding or desert ?
Likes: 1
Updated At: 2016-02-13T05:15:55Z
==================================
Sentiment(polarity=0.4, subjectivity=0.525)
Sentiment(polarity=0.4, subjectivity=0.525, assessments=[(['happy'], 0.8, 1.0, None), (['local'], 0.0, 0.0, None), (['much'], 0.2, 0.2, None), (['kind'], 0.6, 0.9, None)])
==================================================
Title: Honey Glazed Pork Loin Roast l Cooking In Canada
Description: Ingredients
pork loin 3 lb = 1,35 kg
black pepper 1/2 tsp
cumin 1, 1/2 tsp
mustard seeds 1,`1/2 tsp
paprika 2 tsp
ginger powder 2 tsp
salt 1 tsp
honey 2 tbsp
soy sauce 40 ml
olive oil 40 ml
cloves 20 - 30 psc
lemon 1 pc
#HoneyGlazedPorkLoinRoast #PorkLoinRoast #RoastLoinPork
Channel Title: Cooking In Canada
Publish time: 2020-07-21T22:08:53Z
Duration: 2:55
Number of comments: 6
Number of likes: 120
Number of dislikes: 6
Number of views: 12128
PHg8v4k6o-s
Comment: Delicious-looking recipe. Next time I buy a pork roast I shall try it.
Likes: 0
Updated At: 2021-03-30T11:53:47Z
==================================
Sentiment(polarity=0.0, subjectivity=0.0)
Sentiment(polarity=0.0, subjectivity=0.0, assessments=[(['next'], 0.0, 0.0, None)])
Comment: Very nice
Likes: 0
Updated At: 2021-02-22T00:18:18Z
==================================
Sentiment(polarity=0.78, subjectivity=1.0)
Sentiment(polarity=0.78, subjectivity=1.0, assessments=[(['very', 'nice'], 0.78, 1.0, None)])
Comment: What herb did you garnish it with?
Likes: 0
Updated At: 2021-05-29T17:54:42Z
==================================
Sentiment(polarity=0.0, subjectivity=0.0)
Sentiment(polarity=0.0, subjectivity=0.0, assessments=[])
Comment: 5
Likes: 0
Updated At: 2021-07-27T21:30:03Z
==================================
Sentiment(polarity=0.0, subjectivity=0.0)
Sentiment(polarity=0.0, subjectivity=0.0, assessments=[])
==================================================
Title: Honey Garlic Pork Chops
Description: Juicy Honey Garlic Pork Chops with caramelised edges ready and on your table in less than 15 minutes! Smothered in the best 4-ingredient sauce! FULL RECIPE: https://cafedelites.com/easy-honey-garlic-pork-chops/
Channel Title: Cafe Delites
Publish time: 2018-08-15T05:21:44Z
Duration: 1:51
Number of comments: 55
Number of likes: 15815
Number of dislikes: 360
Number of views: 1386820
6ybbclHqNhI
Comment: Im off downstairs to get the chops out the freezer , this looks delicious i have no vinegar ill use a little lemon juice.
Likes: 79
Updated At: 2019-11-16T22:29:49Z
==================================
Sentiment(polarity=0.10416666666666667, subjectivity=0.8333333333333334)
Sentiment(polarity=0.10416666666666667, subjectivity=0.8333333333333334, assessments=[(['delicious'], 1.0, 1.0, None), (['ill'], -0.5, 1.0, None), (['little'], -0.1875, 0.5, None)])
Comment: Tried your recipe, my WHOLE FAMILY LOVED IT. It's amazing and so tasty.
Likes: 42
Updated At: 2019-06-06T22:35:39Z
==================================
Sentiment(polarity=0.5, subjectivity=0.7000000000000001)
Sentiment(polarity=0.5, subjectivity=0.7000000000000001, assessments=[(['whole'], 0.2, 0.4, None), (['loved'], 0.7, 0.8, None), (['amazing'], 0.6000000000000001, 0.9, None)])
Comment: This looks so good. I'll be making it soon. Thank you.
Likes: 3
Updated At: 2020-02-01T18:51:27Z
==================================
Sentiment(polarity=0.7, subjectivity=0.6000000000000001)
Sentiment(polarity=0.7, subjectivity=0.6000000000000001, assessments=[(['good'], 0.7, 0.6000000000000001, None)])
Comment: I just made this and it was delicious!!! Thank you so much for this recipe!! :)
Likes: 6
Updated At: 2019-08-15T00:29:37Z
==================================
Sentiment(polarity=0.6041666666666666, subjectivity=0.7333333333333334)
Sentiment(polarity=0.6041666666666666, subjectivity=0.7333333333333334, assessments=[(['delicious', '!', '!', '!'], 1.0, 1.0, None), (['much', '!', '!'], 0.3125, 0.2, None), ([':)'], 0.5, 1.0, 'mood')])
==================================================
Title: Honey roasted PORK BELLY with Chilli How to Make recipe
Description: My recipes:
http://www.youtube.com/OriginalNakedChef
Channel Title: Original Naked Chef
Publish time: 2011-08-20T21:34:40Z
Duration: 16:30
Number of comments: 89
Number of likes: 127
Number of dislikes: 10
Number of views: 20086
jW2vaRrvKNA
Comment: @SunnySoleta
That’s great to hear that the whole family enjoyed it. That way you can just make the 1 meal and everyone’s happy :))
I must admit I just put the chicken in to keep my life simple for the next day, glad you liked that idea :)
Thanks for watching my vids I hope I can come up with some more recipes your family will enjoy.
OriginalNakedChef
Likes: 0
Updated At: 2011-09-06T08:23:45Z
==================================
Sentiment(polarity=0.35000000000000003, subjectivity=0.6540816326530612)
Sentiment(polarity=0.35000000000000003, subjectivity=0.6540816326530612, assessments=[(['great'], 0.8, 0.75, None), (['whole'], 0.2, 0.4, None), (['enjoyed'], 0.5, 0.7, None), (['happy'], 0.8, 1.0, None), ([':)'], 0.5, 1.0, 'mood'), (['chicken'], -0.6, 0.95, None), (['simple'], 0.0, 0.35714285714285715, None), (['next'], 0.0, 0.0, None), (['glad'], 0.5, 1.0, None), (['liked'], 0.6, 0.8, None), ([':)'], 0.5, 1.0, 'mood'), (['thanks'], 0.2, 0.2, None), (['more'], 0.5, 0.5, None), (['enjoy'], 0.4, 0.5, None)])
Comment: @chriser555
That’s a really nice comment!
Ref the fishermans pie, the leeks are a great alternative to spinach, good choice!
Well done to you chef!
Ref the pork belly. If you are going to remove the chilli then maybe don’t replace it with anything, just leave it out. Alternatively could you consider putting the cumin and honey mix all over the top. Then if you wanted some chilli for you, just sprinkle a little one half only. That way you both get what you want.
OriginalNakedChef
Likes: 0
Updated At: 2011-08-25T06:28:33Z
==================================
Sentiment(polarity=0.38511904761904764, subjectivity=0.6452380952380953)
Sentiment(polarity=0.38511904761904764, subjectivity=0.6452380952380953, assessments=[(['really', 'nice', '!'], 0.75, 1.0, None), (['great'], 0.8, 0.75, None), (['good', '!', '!'], 1.0, 0.6000000000000001, None), (['top'], 0.5, 0.5, None), (['little'], -0.1875, 0.5, None), (['half'], -0.16666666666666666, 0.16666666666666666, None), (['only'], 0.0, 1.0, None)])
Comment: the cracking and the sweet honey on the top,they look yummy :) thanks chef
Likes: 0
Updated At: 2011-08-21T08:54:43Z
==================================
Sentiment(polarity=0.35000000000000003, subjectivity=0.6166666666666666)
Sentiment(polarity=0.35000000000000003, subjectivity=0.6166666666666666, assessments=[(['sweet'], 0.35, 0.65, None), ([':)'], 0.5, 1.0, 'mood'), (['thanks'], 0.2, 0.2, None)])
Comment: @Cenotaff
That’s a very nice comment!
Pork belly if cooked well is so delicious.
Thanks you for your kind words, its comments like yours that keep me going :))
OrignalNakedChef
Likes: 0
Updated At: 2011-11-04T05:12:04Z
==================================
Sentiment(polarity=0.655, subjectivity=0.82)
Sentiment(polarity=0.655, subjectivity=0.82, assessments=[(['very', 'nice', '!'], 0.9750000000000001, 1.0, None), (['delicious'], 1.0, 1.0, None), (['thanks'], 0.2, 0.2, None), (['kind'], 0.6, 0.9, None), ([':)'], 0.5, 1.0, 'mood')])
==================================================
Title: Honey Glazed Pork Ribs - Easy Pork Ribs Recipe
Description: These honey glazed pork ribs are so good and packed with flavor. The ribs are slowly cooked in a honey glaze sauce. The ribs come out so tender and very delicious.
i found the Original recipe on Gordon Ramsey's Channel
KITCHEN UTENSILS
Get the cast iron pan here: http://amzn.to/2FbMBOE
INGREDIENTS
2 lbs Pork ribs
salt and pepper to taste
olive oil
1 medium onion, sliced
3 cloves garlic, crushed
1 Tbs sliced ginger
3/4 cup honey
3 Tbs soy sauce
1/2 cup rice wine vinegar
1/2 cup chicken broth
1 Tbs red pepper flakes
1/2 Tbs whole peppercorns
4 star anise
PLEASE SUBSCRIBE and turn on notifications
Connect with me;
facebook : https://www.facebook.com/cookingwithc...
instagram : https://www.instagram.com/claudiaclar...
Email : Claudiaclarktj@gmail.com
Channel Title: Cooking With Claudia
Publish time: 2019-09-16T20:46:18Z
Duration: 3:23
Number of comments: 99
Number of likes: 1397
Number of dislikes: 35
Number of views: 77865
wJP7VxNd1PE
Comment: I made these for my son's 21st birthday and they came out great. Everyone loved them.
Likes: 10
Updated At: 2020-03-07T19:55:59Z
==================================
Sentiment(polarity=0.5, subjectivity=0.5166666666666667)
Sentiment(polarity=0.5, subjectivity=0.5166666666666667, assessments=[(['21st'], 0.0, 0.0, None), (['great'], 0.8, 0.75, None), (['loved'], 0.7, 0.8, None)])
Comment: This looks absolutely delicious!! I'm definitely going to be making some. Thank you for all your awesome recipes.
Likes: 0
Updated At: 2019-10-28T19:09:54Z
==================================
Sentiment(polarity=0.6666666666666666, subjectivity=0.8333333333333334)
Sentiment(polarity=0.6666666666666666, subjectivity=0.8333333333333334, assessments=[(['absolutely', 'delicious', '!', '!'], 1.0, 1.0, None), (['definitely'], 0.0, 0.5, None), (['awesome'], 1.0, 1.0, None)])
Comment: I made your Teriyaki Glazed Salmon for my wife, we both love it. Now it is time to try these Honey Blazed Ribs.
Likes: 2
Updated At: 2021-04-16T18:32:05Z
==================================
Sentiment(polarity=0.5, subjectivity=0.6)
Sentiment(polarity=0.5, subjectivity=0.6, assessments=[(['love'], 0.5, 0.6, None)])
Comment: Hey Claudia! I made your beef and broccoli recipe a couple of weeks ago, and my boyfriend loved it! He’s a bigger chicken fan than beef though, so I was hoping to make a chicken and broccoli version of your dish. I tried looking around for chicken and broccoli recipes, but they were all too fancy with their add ons. I liked how your recipe is simple, yet extremely flavorful at the same time. Also, none of your competitors had video proof of their son devouring down his food! Haha. So cute! Anyway, how would I make the beef and broccoli recipe with chicken instead? I thought about keeping everything the same, but subbing beef stock for chicken stock instead. Would that work? Thanks! :)
Likes: 0
Updated At: 2019-09-27T22:52:35Z
==================================
Sentiment(polarity=-0.015849673202614375, subjectivity=0.6615312791783379)
Sentiment(polarity=-0.015849673202614375, subjectivity=0.6615312791783379, assessments=[(['loved', '!'], 0.875, 0.8, None), (['bigger'], 0.0, 0.5, None), (['chicken'], -0.6, 0.95, None), (['chicken'], -0.6, 0.95, None), (['chicken'], -0.6, 0.95, None), (['liked'], 0.6, 0.8, None), (['simple'], 0.0, 0.35714285714285715, None), (['extremely'], -0.125, 1.0, None), (['same'], 0.0, 0.125, None), (['down', '!'], -0.19444444444444448, 0.2888888888888889, None), (['haha'], 0.2, 0.3, None), (['cute', '!'], 0.625, 1.0, None), (['chicken'], -0.6, 0.95, None), (['same'], 0.0, 0.125, None), (['chicken'], -0.6, 0.95, None), (['thanks', '!'], 0.25, 0.2, None), ([':)'], 0.5, 1.0, 'mood')])
==================================================
Title: Honey Dijon Garlic Roasted Pork Tenderloin
Description: Perfectly tender Honey Dijon Garlic Roasted Pork Tenderloin only requires a few ingredients and a few minutes of your time to get roasting in the oven. It’s a flavorful, juicy pork tenderloin that your family will love!
__________⬇️⬇️⬇️⬇️ CLICK FOR RECIPE ⬇️⬇️⬇️⬇️ ___________
PRINTABLE RECIPE: 🖨️https://thestayathomechef.com/honey-dijon-garlic-roasted-pork-tenderloin/ 🖨️
🍴🍴🍴🍴🍴🍴🍴🍴🍴
✅Ingredients
• 2 pounds pork tenderloin
• 1/4 cup whole grain dijon mustard
• 2 tablespoons honey
• 4 cloves garlic crushed
• 1/2 teaspoon salt
• 1/4 teaspoon black pepper
• 1 tablespoon olive oil
✅Instructions
01:30 - How to use a meat thermometer to check the temperature of pork tenderloin
02:39 - Quick recap Honey Dijon Garlic Roasted Pork Tenderloin recipe
1️⃣ 00:50 - Heat a cast iron skillet or oven safe skillet to high heat. Preheat oven to 400 degrees F.
2️⃣ 00:14 - Meanwhile, in a small bowl whisk together dijon mustard, honey, garlic, salt, and pepper. Rub each pork tenderloin with the sauce until thoroughly coated.
3️⃣ 01:02 - Pour olive oil into the skillet. Sear tenderloins on each side, using tongs to turn. Use any remaining sauce to coat the pork again. Once the outside is seared, slide the skillet into the preheated oven and roast until the pork reaches an internal temperature of 145 degrees F, about 10 to 15 minutes.
4️⃣ 02:18 - Let rest for 5 minutes before slicing and serving.
🍴🍴🍴🍴🍴🍴🍴🍴🍴
Thanks for watching! Don't forget to push "LIKE," leave a COMMENT below, and SUBSCRIBE! Feel free to SHARE this video too.
SUBSCRIBE to my channel: http://youtube.com/thestayhomechef
FACEBOOK: The Stay At Home Chef
INSTAGRAM: TheStayAtHomeChef
PINTEREST: The Stay At Home Chef
TWITTER: TheStayHomeChef
CONTACT ME: rach@thestayathomechef.com
⭐⭐⭐⭐⭐
The Stay At Home Chef offers restaurant-quality recipes you can easily make at home. If you want to become a better cook, learn how to cook, or just need dinner ideas for your family, this channel is for you. We’re taking really good recipes and making them easy recipes that you can make at home in your own kitchen. Cooking, baking, how to, all things food, and more!
⭐⭐⭐⭐⭐
Channel Title: The Stay At Home Chef
Publish time: 2020-01-13T15:30:00Z
Duration: 3:23
Number of comments: 50
Number of likes: 993
Number of dislikes: 26
Number of views: 68038
IQuD0MluAE4
Comment: Hey Rachel, wow, does that ever look moist and delicious, having worked in the smokehouse at Hatfield's Meat's in my younger years I am always looking for new pork recipes, gonna give this a try if not this weekend, the next, thanks again for sharing!
Likes: 5
Updated At: 2020-01-13T15:58:47Z
==================================
Sentiment(polarity=0.2477272727272727, subjectivity=0.44242424242424244)
Sentiment(polarity=0.2477272727272727, subjectivity=0.44242424242424244, assessments=[(['wow'], 0.1, 1.0, None), (['delicious'], 1.0, 1.0, None), (['younger'], 0.0, 0.0, None), (['new'], 0.13636363636363635, 0.45454545454545453, None), (['next'], 0.0, 0.0, None), (['thanks', '!'], 0.25, 0.2, None)])
Comment: We are pretty sure it's super delicious! Great Recipe Rachel, we love it! 👍🏻
Likes: 1
Updated At: 2020-01-19T12:01:45Z
==================================
Sentiment(polarity=0.5847222222222221, subjectivity=0.8175925925925925)
Sentiment(polarity=0.5847222222222221, subjectivity=0.8175925925925925, assessments=[(['pretty'], 0.25, 1.0, None), (['sure'], 0.5, 0.8888888888888888, None), (['super'], 0.3333333333333333, 0.6666666666666666, None), (['delicious', '!'], 1.0, 1.0, None), (['great'], 0.8, 0.75, None), (['love', '!'], 0.625, 0.6, None)])
Comment: Thank you for such a wonderful recipe! We enjoyed dinner so much. I put the tenderloins on top of some lightly sauteed onions prior to roasting the tenderloin. SOOOOO good!
Likes: 2
Updated At: 2020-11-13T06:03:37Z
==================================
Sentiment(polarity=0.434375, subjectivity=0.5250000000000001)
Sentiment(polarity=0.434375, subjectivity=0.5250000000000001, assessments=[(['such'], 0.0, 0.5, None), (['wonderful', '!'], 1.0, 1.0, None), (['enjoyed'], 0.5, 0.7, None), (['much'], 0.2, 0.2, None), (['top'], 0.5, 0.5, None), (['lightly'], 0.4, 0.7, None), (['prior'], 0.0, 0.0, None), (['good', '!'], 0.875, 0.6000000000000001, None)])
Comment: That looks fabulous! Thank you!
Likes: 0
Updated At: 2020-06-07T01:57:39Z
==================================
Sentiment(polarity=0.625, subjectivity=1.0)
Sentiment(polarity=0.625, subjectivity=1.0, assessments=[(['fabulous', '!', '!'], 0.625, 1.0, None)])
==================================================
Title: CHRISTMAS RECIPE: Honey Glazed Ham With Pear & Saffron Chutney
Description: A classic recipe paired with a delicious chutney.
Gordon Ramsay’s Ultimate Cookery Course – http://amzn.to/2BzAud5
Subscribe for weekly cooking videos.
"A hearty dinner together with a wonderfully homey dessert.
Gordon Ramsay’s Ultimate Cookery Course – http://amzn.to/2BzAud5
Subscribe for weekly cooking videos.
If you liked this clip check out the rest of Gordon's channels:
http://www.youtube.com/gordonramsay
http://www.youtube.com/kitchennightmares
http://www.youtube.com/thefword"
Channel Title: Gordon Ramsay
Publish time: 2018-12-17T17:00:04Z
Duration: 7:22
Number of comments: 3267
Number of likes: 48784
Number of dislikes: 1299
Number of views: 3352651
c5KOthuMywA
Comment: ‘Now, the glaze; very very simple...’. Starts with three things I’ve never heard of before in life....
Likes: 4197
Updated At: 2019-10-19T17:30:47Z
==================================
Sentiment(polarity=0.0, subjectivity=0.4642857142857143)
Sentiment(polarity=0.0, subjectivity=0.4642857142857143, assessments=[(['very', 'very', 'simple'], 0.0, 0.4642857142857143, None)])
Comment: Me: Gordon is such a genius chef I wonder how he thinks<br>Gordon: <b>ham = albino pineapple</b>
Likes: 1687
Updated At: 2019-10-10T00:04:02Z
==================================
Sentiment(polarity=0.0, subjectivity=0.5)
Sentiment(polarity=0.0, subjectivity=0.5, assessments=[(['such'], 0.0, 0.5, None)])
Comment: "Now the glaze, very simple.." <br>All you need to start with is an extinct priceless wine, that can only be found to this day in the coat pockets of the ancient elders of the forgotten Himalayan mountain Tribe.
Likes: 1019
Updated At: 2020-10-27T21:42:28Z
==================================
Sentiment(polarity=0.2, subjectivity=0.725)
Sentiment(polarity=0.2, subjectivity=0.725, assessments=[(['very'], 0.2, 0.3, None), (['extinct'], -0.4, 0.6, None), (['priceless'], 1.0, 1.0, None), (['only'], 0.0, 1.0, None)])
Comment: Vegans: make fruits look like meat.<br>Gordan: makes meat look like fruit.
Likes: 68
Updated At: 2021-06-17T14:01:09Z
==================================
Sentiment(polarity=0.0, subjectivity=0.0)
Sentiment(polarity=0.0, subjectivity=0.0, assessments=[])
==================================================
Error403
==================================================
Title: Super Easy Sticky Honey Pork 蜜汁排骨 The Perfect Chinese Recipe! Chinese Pork Recipe
Description: As you know, we almost rarely cook on weekdays because of work. Usually we just dabao (get takeout) from the coffeeshops near our place and one of our favourite choices of dinner is economy rice or more fondly referred to as Cai Png in Hokkien. In case you didn't know what an Economy rice stall sells, think Panda Express-- the stall pre-cooked a good variety of dishes and customers can select any of these dishes to go with white rice. This sticky honey pork dish was inspired by one of the cai png stalls Roland usually patrons. They cooked this dish so well that I had to get Roland to cook it at home too.
Refer to the ingredient list below or go to our website here http://spicenpans.com/sticky-honey-pork/ for your easy reference.
Hope you can recreate this yummy dish in the comfort of your home. Thanks for dropping by our channel.
Please subscribe to stay tuned to our home cooking videos.
Follow us on:
Youtube: www.youtube.com/spicenpans
Facebook www.facebook.com/spicenpans/
Instagram www.instagram/spicenpans
Blog: www.spicenpans.com
Chat with us! info@spicenpans.com
Thanks for watching! See you soon.
————-
Are you trading online now? Click here to trade on Tiger Brokers and get free stocks!
https://www.tigerbrokers.com.sg/activity/forapp/invitflow-intl/signup.html?template=invite202011&lang=en_US&invite=C5X367&share=WhatsAPP
------------------
Ingredients:
Serves 6
1st - marinate the pork for at least 2 hours
==========
600g of pork loin with bones
1.5 tablespoons of light soya sauce
1 tablespoon of Chinese white rice wine
1 tablespoon of oyster sauce
1/2 teaspoon of baking powder
A generous dash of white pepper
3 tablespoons of cornflour
2nd: Deep fry pork twice (1st fry over medium heat & 2nd fry over high heat)
3rd: Putt the dish together
=====
1/2 thumb size of ginger - julienne
4 cloves of garlic - chopped
1 cup of water
2 tablespoons of light soya sauce
2 tablespoons of honey
1 tablespoon of dark soya sauce
Add marinated pork
-----
Looking for some of the things or ingredients we used in this video but not residing in Singapore? We welcome you for a vacation in Singapore or simply click one of these links to see similar or substitute products on Amazon. Happy shopping!
Cast Iron Wok: https://amzn.to/2MvAssa
Low Sodium Light Soya Sauce: https://amzn.to/2JPnyn3
Chinese rice wine: https://amzn.to/2t10iMk
Oyster Sauce: https://amzn.to/2sZ8FIj
Dark Soya Sauce: https://amzn.to/2MpSBr4
-----
If you like this recipe, you might like these too:
Braised Pork Belly Buns 扣肉包 Kong Bak Bao
https://youtu.be/6quaf9cGJO4
Thai Basil Pork | MUST-TRY RECIPE Pad Krapao
https://youtu.be/Kv8s00Vr_xI
Crispy Nam Yu Pork / Nan Ru Pork 南乳炸肉
https://youtu.be/k5ygeN6PbiE
Disclaimer:
Spice N' Pans is not related to these products and cannot guarantee the quality of the products in the links provided. Links are provided here for your convenience. We can only stand by the brands of the products we used in the video and we highly recommend you to buy them. Even then, preference can be subjective. Please buy at your own risk. Some of the links provided here may be affiliated. These links are important as they help to fund this channel so that we can continue to give you more recipes. Cheers!
Channel Title: Spice N' Pans
Publish time: 2018-04-20T23:25:49Z
Duration: 4:44
Number of comments: 350
Number of likes: 13094
Number of dislikes: 336
Number of views: 874250
OhOoGTuGfHE
Comment: I’ve tried other similar recipes BUT yours is by far the most delicious! I was 👏👏👏 my hands when I made it ! Yum ! Thank you for the video!! 💚💜
Likes: 15
Updated At: 2021-06-01T15:27:52Z
==================================
Sentiment(polarity=0.29500000000000004, subjectivity=0.655)
Sentiment(polarity=0.29500000000000004, subjectivity=0.655, assessments=[(['other'], -0.125, 0.375, None), (['similar'], 0.0, 0.4, None), (['far'], 0.1, 1.0, None), (['most'], 0.5, 0.5, None), (['delicious', '!', '!', '!', '!', '!'], 1.0, 1.0, None)])
Comment: I am just so grateful for food, being able to be taught by people in my city and the other side of the world, lastly living in the golden age of youtube. 😀👊
Likes: 8
Updated At: 2019-08-13T01:46:22Z
==================================
Sentiment(polarity=0.16875, subjectivity=0.39166666666666666)
Sentiment(polarity=0.16875, subjectivity=0.39166666666666666, assessments=[(['able'], 0.5, 0.625, None), (['other'], -0.125, 0.375, None), (['lastly'], 0.0, 0.06666666666666667, None), (['golden'], 0.3, 0.5, None)])
Comment: This one goes to my Playlist for the future when I got my own apartment so get to celebrate with some delicious food😆
Likes: 12
Updated At: 2020-10-03T13:57:51Z
==================================
Sentiment(polarity=0.5333333333333333, subjectivity=0.7083333333333334)
Sentiment(polarity=0.5333333333333333, subjectivity=0.7083333333333334, assessments=[(['future'], 0.0, 0.125, None), (['own'], 0.6, 1.0, None), (['delicious'], 1.0, 1.0, None)])
Comment: This is a great recipe, made it twice now - the family loved it. I added a spoonful of almond butter to the sauce which it gave it a tasty satay flavour, yum!
Likes: 4
Updated At: 2020-07-12T14:47:16Z
==================================
Sentiment(polarity=0.8375, subjectivity=0.775)
Sentiment(polarity=0.8375, subjectivity=0.775, assessments=[(['great'], 0.8, 0.75, None), (['loved', '!'], 0.875, 0.8, None)])
==================================================
Title: Honey and garlic roasted pork tenderloin recipe
Description: If you are looking for a new recipe for dinner, here's one from Smith's Chef Jeff.
Channel Title: FOX 13 News Utah
Publish time: 2020-09-14T19:23:17Z
Duration: 4:15
Number of comments: 5
Number of likes: 69
Number of dislikes: 4
Number of views: 10258
lbphs1dTI4U
Comment: How long did you have in the oven before you appilied the the honey garlic on it .
Likes: 0
Updated At: 2021-04-27T19:20:43Z
==================================
Sentiment(polarity=-0.05, subjectivity=0.4)
Sentiment(polarity=-0.05, subjectivity=0.4, assessments=[(['long'], -0.05, 0.4, None)])
Comment: How hot was the oven?
Likes: 0
Updated At: 2021-08-16T23:46:11Z
==================================
Sentiment(polarity=0.25, subjectivity=0.8500000000000001)
Sentiment(polarity=0.25, subjectivity=0.8500000000000001, assessments=[(['hot'], 0.25, 0.8500000000000001, None)])
Comment: Yeah, the times
Likes: 0
Updated At: 2021-06-06T04:39:58Z
==================================
Sentiment(polarity=0.0, subjectivity=0.0)
Sentiment(polarity=0.0, subjectivity=0.0, assessments=[])
Comment: You should put the ingredients in the description
Likes: 0
Updated At: 2020-12-02T23:24:26Z
==================================
Sentiment(polarity=0.0, subjectivity=0.0)
Sentiment(polarity=0.0, subjectivity=0.0, assessments=[])
==================================================
Title: Honey glazed pork | Akis Petretzikis
Description: Honey glazed pork | Akis Petretzikis
Subscribe: http://bit.ly/akispetretzikiseng
Recipe: https://akispetretzikis.com/en/categories/kreas/choirino-mpoyti-me-meli-kai-moystarda
Akis eshop: https://akiseshop.com/en
Chef: Akis Petretzikis
Director: Leonidas Pelivanidis
Production: Akis Petretzikis Ltd.
Official website: https://akispetretzikis.com/
Facebook Page: https://www.facebook.com/akispetretzikisofficialpage/
Twitter: https://twitter.com/a_petretzikis?lang=en
Instagram:https://www.instagram.com/akis_petretzikis/
Pinterest: https://www.pinterest.com/akispetretzikis/
Video Editor: Mihalis Barbaris
Featured Partners: Mary-Rose Andrianopoulou, Giannis Mpourodimos, Katerina Vasilakopoulou, Maria Vasilakopoulou, Kellina Dimitriadi, Markos Papakostantinou, Giannis Margaris, Diana Alexaki, Anna-Maria Volanaki, Tilemachos Dimitrakopoulos, Kyriakos Papaemmanouil
Channel Title: Akis Petretzikis
Publish time: 2018-12-27T15:00:03Z
Duration: 8:7
Number of comments: 57
Number of likes: 749
Number of dislikes: 14
Number of views: 20980
Z-HHx1z-2Zg
Comment: I now find myself saying “Don’t be cheapy” in my kitchen too haha. This channel makes cooking easier for me thanks Akis
Likes: 37
Updated At: 2018-12-27T15:16:55Z
==================================
Sentiment(polarity=0.2, subjectivity=0.25)
Sentiment(polarity=0.2, subjectivity=0.25, assessments=[(['haha'], 0.2, 0.3, None), (['thanks'], 0.2, 0.2, None)])
Comment: Good sir, are you an angel from heaven? Because your cooking is divine!
Likes: 7
Updated At: 2018-12-28T17:48:26Z
==================================
Sentiment(polarity=0.875, subjectivity=0.6000000000000001)
Sentiment(polarity=0.875, subjectivity=0.6000000000000001, assessments=[(['good', '!'], 0.875, 0.6000000000000001, None)])
Comment: I would demolish that, I can see this on my table at the new year Thank you, Akis for this delicious recipe :-))
Likes: 6
Updated At: 2018-12-27T17:39:57Z
==================================
Sentiment(polarity=0.5454545454545454, subjectivity=0.8181818181818182)
Sentiment(polarity=0.5454545454545454, subjectivity=0.8181818181818182, assessments=[(['new'], 0.13636363636363635, 0.45454545454545453, None), (['delicious'], 1.0, 1.0, None), ([':-)'], 0.5, 1.0, 'mood')])
Comment: I think I just found the perfect recipe for New Year's dinner. Thanks Akis, I really enjoy your videos, take care and as always God bless... 🤗😁
Likes: 5
Updated At: 2018-12-27T22:05:41Z
==================================
Sentiment(polarity=0.4340909090909091, subjectivity=0.5386363636363636)
Sentiment(polarity=0.4340909090909091, subjectivity=0.5386363636363636, assessments=[(['perfect'], 1.0, 1.0, None), (['new'], 0.13636363636363635, 0.45454545454545453, None), (['thanks'], 0.2, 0.2, None), (['really', 'enjoy'], 0.4, 0.5, None)])
==================================================
Title: Roasted Honey Barbecue Pork (Char Siu)
Description: Get the recipe: https://tasty.co/recipe/honey-roasted-bbq-pork-char-siu
Check us out on Facebook! - facebook.com/buzzfeedtasty
Credits: https://www.buzzfeed.com/bfmp/videos/56863
MUSIC
Licensed via Audio Network
Channel Title: Tasty
Publish time: 2018-05-19T19:00:38Z
Duration: 2:1
Number of comments: 305
Number of likes: 8909
Number of dislikes: 129
Number of views: 277302
DiKAE6OuIdk
Comment: It looks absolutely delicious.
Likes: 469
Updated At: 2018-05-19T19:03:45Z
==================================
Sentiment(polarity=1.0, subjectivity=1.0)
Sentiment(polarity=1.0, subjectivity=1.0, assessments=[(['absolutely', 'delicious'], 1.0, 1.0, None)])
Comment: When a mother is scolding her son,there is a saying which is literally translated to 'It would have been better if I had given birth to a piece of Char Siu than to you.' Yes , char siu is that good.
Likes: 347
Updated At: 2018-05-19T19:28:17Z
==================================
Sentiment(polarity=0.6, subjectivity=0.55)
Sentiment(polarity=0.6, subjectivity=0.55, assessments=[(['better'], 0.5, 0.5, None), (['good'], 0.7, 0.6000000000000001, None)])
Comment: One of my favorite pork recipes in the World. So good.
Likes: 201
Updated At: 2018-05-19T19:25:24Z
==================================
Sentiment(polarity=0.6, subjectivity=0.8)
Sentiment(polarity=0.6, subjectivity=0.8, assessments=[(['favorite'], 0.5, 1.0, None), (['good'], 0.7, 0.6000000000000001, None)])
Comment: <i>"My mom would be so proud"</i><br><br>Trust me... They are never proud of us...
Likes: 220
Updated At: 2018-05-20T01:02:13Z
==================================
Sentiment(polarity=-0.4, subjectivity=1.0)
Sentiment(polarity=-0.4, subjectivity=1.0, assessments=[(['never', 'proud'], -0.4, 1.0, None)])
==================================================
Title: Honey Glazed Pork Chops| Extremely Juicy | Must try!!
Description: Check Out My Amazon Store
https://www.amazon.com/shop/islandvibecooking
Honey Glazed Pork Chops!!
The most Juiciest and delicious Honey Garlic pork chops you'll ever tasted. The perfect MOST moist pork chops in the oven. I wanted to make some smothered pork chops I figured oven baked pork chops are a little bit more healthier and easier I tried this new trick to get the perfect oven baked moist pork chops. They turned out so delicious and juicy.
Please Subscribe!!
https://www.youtube.com/channel/UCXCWl8R-bOixRza-Av-7ASw
Turn Your Notification ON 🔔
New Video everyday!!
INGREDIENTS
.84 LB THICK CUT PORK CHOPS (cleaned)
1 TSP ONION POWDER
1 TSP ROASTED GARLIC & HERB
1/2 GROUND BLACK PEPPER
SALT TO TASTE
1 TBSP UNSALTED BUTTER
1 TSP MINCED GARLIC
5 TBSP HONEY
1/3 CUP CHICKEN BROTH
BOIL ON 400 DEGREES FOR 20 MINUTES
note* if using a thinner cut pork chops lower your temperature to 300-350 degrees
Watch More Delicious Recipe
Pork Chops in the OVEN Recipe
https://youtu.be/_MYabvfKFZc
How To Make Seafood Boil In A Bag
https://youtu.be/tGOnvzNRBvI
Pork Chops in the OVEN Recipe, Extremely Tender & Juicy
https://youtu.be/6XW_rsFfZEA
EASY Juicy Salmon Recipe
https://youtu.be/xBWaonoPiy8
Seafood Boil Recipe, King Crab, Sausage, Shrimp, Lobster Tail, Potatoes
https://youtu.be/3895VmxksNo
======================================================
Follow my personal social media accounts
Snapchat: rose_p3tal
Instagram: rosep3tal_
Follow us on IG IslandVibeCooking
Like our Facebook Page @IslandVibeCooking
Email us @IslandVibeCooking@gmail.com
#porkchops
#ovenbakedporkchops
Channel Title: Island Vibe Cooking
Publish time: 2018-12-21T00:44:34Z
Duration: 5:17
Number of comments: 77
Number of likes: 2367
Number of dislikes: 104
Number of views: 172186
DBpo41DY-uI
Comment: Thank you for sharing the recipe! I just made them though I twinged the recipe a little. I used your same ingredients, I covered the pan and let them simmer until they were done, then I set them a side. To the pan I added the garlic, butter, a little honey, chicken broth and some capers and the liquid.Then I added the port chops back to the pan and covered them. I set the stove low to med heat until the liquid dissipated. It was very good and I did not have to use the oven.
Likes: 30
Updated At: 2019-02-10T20:51:42Z
==================================
Sentiment(polarity=-0.009285714285714295, subjectivity=0.45071428571428573)
Sentiment(polarity=-0.009285714285714295, subjectivity=0.45071428571428573, assessments=[(['little'], -0.1875, 0.5, None), (['same'], 0.0, 0.125, None), (['little'], -0.1875, 0.5, None), (['chicken'], -0.6, 0.95, None), (['back'], 0.0, 0.0, None), (['low'], 0.0, 0.3, None), (['very', 'good'], 0.9099999999999999, 0.7800000000000001, None)])
Comment: I made these tonight. OMG ! They were so good they should be illegal !
Likes: 24
Updated At: 2019-01-06T00:09:49Z
==================================
Sentiment(polarity=0.03749999999999998, subjectivity=0.55)
Sentiment(polarity=0.03749999999999998, subjectivity=0.55, assessments=[(['good'], 0.7, 0.6000000000000001, None), (['illegal', '!'], -0.625, 0.5, None)])
Comment: I made these for my husband and Success!! I like your style and will definitely try more of your recipes! Thank you.
Likes: 0
Updated At: 2021-05-26T11:30:10Z
==================================
Sentiment(polarity=0.3645833333333333, subjectivity=0.3333333333333333)
Sentiment(polarity=0.3645833333333333, subjectivity=0.3333333333333333, assessments=[(['success', '!', '!'], 0.46875, 0.0, None), (['definitely'], 0.0, 0.5, None), (['more', '!'], 0.625, 0.5, None)])
Comment: Extremely delicious! I was showered with compliments.....
Likes: 1
Updated At: 2021-07-14T22:22:04Z
==================================
Sentiment(polarity=1.0, subjectivity=1.0)
Sentiment(polarity=1.0, subjectivity=1.0, assessments=[(['extremely', 'delicious', '!'], 1.0, 1.0, None)])
==================================================
Video hides comments and likes
Video hides comments and likes
0GuQkX6vVRo
Comment: Thanks for watching! Get a printable version of this recipe on my website here: <a href="http://bit.ly/2p3wsE3">http://bit.ly/2p3wsE3</a>
Likes: 3
Updated At: 2018-03-10T01:45:06Z
==================================
Sentiment(polarity=0.25, subjectivity=0.2)
Sentiment(polarity=0.25, subjectivity=0.2, assessments=[(['thanks', '!'], 0.25, 0.2, None)])
Comment: That looks delicious! —Danny
Likes: 2
Updated At: 2018-03-10T02:54:52Z
==================================
Sentiment(polarity=1.0, subjectivity=1.0)
Sentiment(polarity=1.0, subjectivity=1.0, assessments=[(['delicious', '!'], 1.0, 1.0, None)])
Comment: YUM!
Likes: 1
Updated At: 2018-03-10T13:27:15Z
==================================
Sentiment(polarity=0.0, subjectivity=0.0)
Sentiment(polarity=0.0, subjectivity=0.0, assessments=[])
Comment: This looks absolutely amazing! My family loves pork tenderloin! YAY you have the recipe printable! Thank you so much for that! You rock, Noreen!!
Likes: 0
Updated At: 2018-03-10T05:53:36Z
==================================
Sentiment(polarity=0.6953125, subjectivity=0.55)
Sentiment(polarity=0.6953125, subjectivity=0.55, assessments=[(['absolutely', 'amazing', '!', '!', '!'], 1.0, 0.9, None), (['much', '!', '!', '!'], 0.390625, 0.2, None)])
==================================================
Title: Honey Glazed Pork Belly, SIMPOL!
Description: SIMPOL HONEY GLAZED PORK BELLY
You can't go wrong with pork belly! Sigurado akong mag eenjoy at papa-extra rice ang buong pamilya. At syempre, mas pinadali ang ating pagluluto dahil sa Camel Appliances Mfg. Corp.'s Air Fryer ❤️
Set A
1 kg pork belly (whole, skin remove)
Set B
2 cloves garlic
1 tablespoon rock salt
1 teaspoon nutmeg
2 tablespoons brown sugar
2 tablespoons honey
1 teaspoon black pepper
1 teaspoon salt
1 piece red onion
4 pieces star anise
Set C
1/2 red cabbage
2 tablespoons salt
½ green cabbage
1 piece carrots (small cuts)
1 piece onion
1 can pineapple chunks (crushed)
1 ½ cup mayonnaise
1 tablespoon sugar white
1 tablespoon vinegar
black pepper to taste
Set D
2 tablespoons honey
2 tablespoons soy sauce
½ piece lemon (juiced)
1 cob of corn
Channel Title: Simpol
Publish time: 2021-06-22T12:00:23Z
Duration: 12:43
Number of comments: 68
Number of likes: 822
Number of dislikes: 12
Number of views: 50370
YVV8ilcfHjo
Comment: Grabe! Improving videos everyday, from small kitchen to a large and modern one, gumanda na din ang editing, nice job!
Likes: 9
Updated At: 2021-06-22T12:50:07Z
==================================
Sentiment(polarity=0.14285714285714285, subjectivity=0.5457142857142857)
Sentiment(polarity=0.14285714285714285, subjectivity=0.5457142857142857, assessments=[(['everyday'], -0.2, 0.6, None), (['small'], -0.25, 0.4, None), (['large'], 0.21428571428571427, 0.42857142857142855, None), (['modern'], 0.2, 0.3, None), (['nice', '!'], 0.75, 1.0, None)])
Comment: Wow. Natakam naman ako, Chef. Thank you for sharing, it's so Simpol, for sure l shall this. 🇵🇭💖
Likes: 3
Updated At: 2021-08-03T19:57:47Z
==================================
Sentiment(polarity=0.3, subjectivity=0.9444444444444444)
Sentiment(polarity=0.3, subjectivity=0.9444444444444444, assessments=[(['wow'], 0.1, 1.0, None), (['sure'], 0.5, 0.8888888888888888, None)])
Comment: 👏🏼👏🏼👏🏼 yey to 500k + subs! Was here when you started with a few thousands! Well deserved!
Likes: 1
Updated At: 2021-06-22T18:52:40Z
==================================
Sentiment(polarity=-0.3125, subjectivity=0.1)
Sentiment(polarity=-0.3125, subjectivity=0.1, assessments=[(['few', '!', '!'], -0.3125, 0.1, None)])
Comment: Thanks chef for sharing 😊😊 excited na to try this
Likes: 0
Updated At: 2021-09-06T17:32:40Z
==================================
Sentiment(polarity=0.2875, subjectivity=0.475)
Sentiment(polarity=0.2875, subjectivity=0.475, assessments=[(['thanks'], 0.2, 0.2, None), (['excited'], 0.375, 0.75, None)])
==================================================
Title: Genshin Impact Recipe #4 / Sticky Honey Roast
Description: A meat dish in a sweet honey sauce. The carrots take the gamey edge off the meat, and the sauce brings it all together sweetly. The perfect warm dish for a cold winter night.
To see my other videos. Click on the link below.
https://www.youtube.com/watch?v=glyRGpj8HHo&t=
Patreon Page:
https://www.patreon.com/chefmar
Cookware and YouTube Gear:
https://www.amazon.com/shop/chefmar
RECIPE
https://chefmar.ca/genshin-impact/f/sticky-honey-roast
Channel Title: ChefMar
Publish time: 2020-12-12T10:26:42Z
Duration: 6:21
Number of comments: 667
Number of likes: 19349
Number of dislikes: 59
Number of views: 398315
bWXFi9alqdo
Comment: If you guys have any Genshin dishes you want to see me make, please post in the comments below, and don't forget to subscribe!
Likes: 660
Updated At: 2020-12-12T10:35:32Z
==================================
Sentiment(polarity=0.0, subjectivity=0.0)
Sentiment(polarity=0.0, subjectivity=0.0, assessments=[])
Comment: imagine eating this in the middle of a battle 😭
Likes: 2985
Updated At: 2021-02-25T13:20:24Z
==================================
Sentiment(polarity=0.0, subjectivity=0.0)
Sentiment(polarity=0.0, subjectivity=0.0, assessments=[(['middle'], 0.0, 0.0, None)])
Comment: Imagine the traveler just cook this with a pot
Likes: 2116
Updated At: 2020-12-13T12:51:56Z
==================================
Sentiment(polarity=0.0, subjectivity=0.0)
Sentiment(polarity=0.0, subjectivity=0.0, assessments=[])
Comment: - Preheat oven to 325<br><br>For the meat:<br>- 3 tbs salt<br>- 1 tbs Black pepper<br>- 1 tbs smoked paprika<br>- 1 tbs cayenne pepper<br><br>For the honey glaze:<br>- 1/2 cup honey<br>- 1/2 cup maple syrup<br>- 1/2 cup brown sugar<br>- 1/4 cup soy sauce<br><br>To the bottom of the pan when cooking: <br>- 1 cup water<br><br>For the Gravy<br>- The stuff from the bottom of the baking pan <br>- 30 g flour<br>- red wine reduction (he doesn’t specify the amount)<br><br>Carrots:<br>- some butter<br>- pinch of the dry rub previously made<br>- a little bit of honey<br><br>Ingredients list because I needed to see it with my eyes.
Likes: 1420
Updated At: 2021-02-02T01:09:14Z
==================================
Sentiment(polarity=-0.11749999999999998, subjectivity=0.33999999999999997)
Sentiment(polarity=-0.11749999999999998, subjectivity=0.33999999999999997, assessments=[(['black'], -0.16666666666666666, 0.43333333333333335, None), (['red'], 0.0, 0.0, None), (['dry'], -0.06666666666666665, 0.6, None), (['previously'], -0.16666666666666666, 0.16666666666666666, None), (['little'], -0.1875, 0.5, None)])
==================================================
Title: Glazed Pork Chops | Garlic Honey | How To Recipe
Description: Learn how to make the most juiciest and tender Garlic Honey Glazed Pork Chops. This recipe is extremely quick to create, making it fantastic for your busy lifestyle. This Glazed Pork Chop recipe is easy to make, tastes so good and by following the easy instructions throughout the video it will leave your mouth watering with every single bite. Please enjoy!
Serves 1-2
Ingredients -
1 Tbsp (15ml) - Olive Oil
2 (250g - 8.8oz) - Pork Loin Chops
2 Tbsp (28g) - Unsalted Butter
5 - Cloves of Garlic, Minced
2 Tbsp (30ml) - Chicken or Vegetable Stock (Recipes Down Below)
1 Tbsp (15ml) - Apple Cider Vinegar
2 Tbsp (65g) - Honey (I used Wild Flower Manuka)
Seasoning to Taste
Potato Bake - https://youtu.be/r5SIalfF0uc
Vegetable Stock - https://youtu.be/h0yWKauJj_Y
Chicken Stock - https://youtu.be/zC4rE5ova34
For the Salad -
There are no measurements for this as you can make however much or as little as you'd like.
The ingredients I used for the salad include -
Rocket (Arugula)
Cucumber
Cherry Tomato
Spanish Onion (Red Onion)
Red Radish
For The Salad Dressing -
1/2 - Lemon, Juiced
1 Tbsp (15ml) - Extra Virgin Olive Oil
Seasoning to taste
Equipment I use - (Disclaimer) All links help support the channel.
Knives and Steels -
Shun Premier 17.8cm Santoku Knife - https://amzn.to/2XmXLdM
Shun Premier 22.9cm Bread Knife - https://amzn.to/2LRPIQM
Shun Premier Nakiri Knife 14cm - https://amzn.to/2AHgMR6
Shun Steel - https://amzn.to/2LRcpEM
Pots and Pans -
Essteele Per Vita 5 Piece Cookware Set - https://amzn.to/2XlVsry
Music in this video -
Intro - https://www.epidemicsound.com/track/KrTClZHiCf
Song - When the Noise Settles
Artist - Dusty Decks
Song - Fansi Pan
Artist - Yomoti
Link - https://www.epidemicsound.com/track/6hi025lD5s
A Caring Friend
Song - Pomelo
Artist - Jobii
Link - https://www.epidemicsound.com/track/0qcVpEkg0l
Thanks for watching!
Channel Title: Chef Jack Ovens
Publish time: 2020-09-20T14:30:22Z
Duration: 6:40
Number of comments: 151
Number of likes: 1344
Number of dislikes: 8
Number of views: 24577
okg4Bl23R4I
Comment: Thank you Jack, we really enjoyed the chops and salad. Also the tip of cutting out the bone. Why have I never thought about that?
Likes: 4
Updated At: 2020-09-27T05:02:24Z
==================================
Sentiment(polarity=-0.04999999999999999, subjectivity=0.8)
Sentiment(polarity=-0.04999999999999999, subjectivity=0.8, assessments=[(['really', 'enjoyed'], 0.5, 0.7, None), (['cutting'], -0.6, 0.9, None)])
Comment: Looks absolutely amazing Jack, it’s nearly 10pm and now I want this. 😆
Likes: 1
Updated At: 2020-09-23T11:52:18Z
==================================
Sentiment(polarity=0.35000000000000003, subjectivity=0.65)
Sentiment(polarity=0.35000000000000003, subjectivity=0.65, assessments=[(['absolutely', 'amazing'], 0.6000000000000001, 0.9, None), (['nearly'], 0.1, 0.4, None)])
Comment: That fine dining flex 👌<br><br>STOCK GANG !!!
Likes: 14
Updated At: 2020-09-20T14:36:42Z
==================================
Sentiment(polarity=0.8138020833333335, subjectivity=0.5)
Sentiment(polarity=0.8138020833333335, subjectivity=0.5, assessments=[(['fine', '!', '!', '!'], 0.8138020833333335, 0.5, None)])
Comment: Read my mind, pork chop is my favorite thing of all time! Looks amazingggg
Likes: 3
Updated At: 2020-09-20T20:57:28Z
==================================
Sentiment(polarity=0.625, subjectivity=1.0)
Sentiment(polarity=0.625, subjectivity=1.0, assessments=[(['favorite', '!'], 0.625, 1.0, None)])
==================================================
Title: Slow Cooked Honey Glazed Pork - AMAZING!
Description: This is a recipe that I saw on Tasty's cooking channel. If you haven't already tried it, it's DELICIOUS. Very easy to follow and the results are amazing. Enjoy!
Slow Cooked Honey Glazed Pork - AMAZING!
Channel Title: Smokin' & Grillin' wit AB
Publish time: 2017-08-31T07:35:38Z
Duration: 6:26
Number of comments: 53
Number of likes: 192
Number of dislikes: 5
Number of views: 8422
zxJ_2939HQg
Comment: Man AB, that looks awesome. I'm gonna definitely have to try this. 😁
Likes: 0
Updated At: 2017-09-04T01:15:30Z
==================================
Sentiment(polarity=0.5, subjectivity=0.75)
Sentiment(polarity=0.5, subjectivity=0.75, assessments=[(['awesome'], 1.0, 1.0, None), (['definitely'], 0.0, 0.5, None)])
Comment: Just before you said it I was thinking, man if that taste 1/2 as good as it looks it will be a winner. Next time we do a family pot luck I know when I am going to be making. Thanks a lot
Likes: 1
Updated At: 2017-10-05T13:24:15Z
==================================
Sentiment(polarity=0.3, subjectivity=0.26666666666666666)
Sentiment(polarity=0.3, subjectivity=0.26666666666666666, assessments=[(['good'], 0.7, 0.6000000000000001, None), (['next'], 0.0, 0.0, None), (['thanks'], 0.2, 0.2, None)])
Comment: I've made something like this before and yours looks delicious 😋 so good!
Likes: 1
Updated At: 2017-08-31T15:03:50Z
==================================
Sentiment(polarity=0.9375, subjectivity=0.8)
Sentiment(polarity=0.9375, subjectivity=0.8, assessments=[(['delicious'], 1.0, 1.0, None), (['good', '!'], 0.875, 0.6000000000000001, None)])
Comment: nice knife work on that piece of pork, this looks amazing, loaded with sweet and salty flavors, a 10+ recipe
Likes: 2
Updated At: 2017-09-11T16:09:38Z
==================================
Sentiment(polarity=0.5166666666666667, subjectivity=0.85)
Sentiment(polarity=0.5166666666666667, subjectivity=0.85, assessments=[(['nice'], 0.6, 1.0, None), (['amazing'], 0.6000000000000001, 0.9, None), (['sweet'], 0.35, 0.65, None)])
==================================================
Title: Honey Glazed Char Siu Pork 叉烧 | The Dumpling Sisters
Description: To celebrate Chinese New Year The Dumpling Sisters are back with a brilliant traditional recipe – Char Siu Barbecue Pork. Prepared in a hoisin and honey marinade then roasted until crisp and delicious, this pork dish will have everyone tucking in. Served over white rice and topped with a sticky sweet sauce this recipe is a firecracker!
The Dumpling Sisters have their own channel with loads more incredible dishes for you to try: http://jamieol.com/5dbMgQ
This recipe is taken from the Dumpling Sisters' Cook book "Over 100 favourite recipes from a Chinese family kitchen". Pre-order your copy now: http://jamieol.com/k9m88r
And find the recipe here as a sneak peak: http://jamieol.com/hvOVe2
Links from the video:
Iced Chrysanthemum Tea | http://jamieol.com/2oDMC2
Potsticker Dumplings | http://jamieol.com/7UXogd
For more nutrition info, click here: http://jamieol.com/D3JimM
Jamie Oliver's Food Tube | http://jamieol.com/M2xkcF
Subscribe to Food Tube | http://jamieol.com/kLO4Xo
Twitter: http://jamieol.com/wY1ZTB
Jamie's Recipes App | http://jamieol.com/E0TVBd
Tumblr: http://jamieol.com/6BR1lT
Facebook | http://jamieol.com/sZmG6S
More great recipes | http://www.jamieoliver.com
#FOODTUBE
x
Channel Title: Jamie Oliver
Publish time: 2015-02-15T12:30:01Z
Duration: 5:32
Number of comments: 421
Number of likes: 10182
Number of dislikes: 307
Number of views: 542093
sq6XGBNxgfM
Comment: Wow!! This looks absolutely delicious! Great recipe, girls!
Likes: 2
Updated At: 2015-02-15T20:13:23Z
==================================
Sentiment(polarity=0.71875, subjectivity=0.9166666666666666)
Sentiment(polarity=0.71875, subjectivity=0.9166666666666666, assessments=[(['wow', '!', '!'], 0.15625, 1.0, None), (['absolutely', 'delicious', '!'], 1.0, 1.0, None), (['great', '!'], 1.0, 0.75, None)])
Comment: Looks really delicious Char Siu Pork! Great dish!
Likes: 1
Updated At: 2015-02-27T15:38:11Z
==================================
Sentiment(polarity=1.0, subjectivity=0.875)
Sentiment(polarity=1.0, subjectivity=0.875, assessments=[(['really', 'delicious', '!'], 1.0, 1.0, None), (['great', '!'], 1.0, 0.75, None)])
Comment: char sui pork is one of the glories of Chinese cuisine! Never tried making it myself but I often order it at restaurants. With rice, and some pak choi on the side, nothing better.
Likes: 21
Updated At: 2015-02-15T17:17:29Z
==================================
Sentiment(polarity=0.25, subjectivity=0.25)
Sentiment(polarity=0.25, subjectivity=0.25, assessments=[(['chinese', '!'], 0.0, 0.0, None), (['better'], 0.5, 0.5, None)])
Comment: I'm from Hong Kong, my boyfriend is from Portugal. Char Siu is one of the only words he knows in Cantonese. He can't even tell me I love you but he knows char siu.
Likes: 100
Updated At: 2015-02-18T01:16:09Z
==================================
Sentiment(polarity=0.25, subjectivity=0.8)
Sentiment(polarity=0.25, subjectivity=0.8, assessments=[(['only'], 0.0, 1.0, None), (['love'], 0.5, 0.6, None)])
==================================================
Error403
==================================================
['2016-04-12T02:13:18Z', '2016-08-07T09:28:24Z', '2016-04-11T08:52:45Z', '2016-09-21T21:45:24Z', '2017-02-19T16:57:41Z', '2020-06-22T14:49:08Z', '2017-07-04T06:33:23Z', '2020-06-22T14:49:37Z', '2017-06-11T03:31:55Z', '2019-08-03T18:47:21Z', '2017-01-19T23:11:19Z', '2015-04-12T14:49:16Z', '2018-11-16T17:53:25Z', '2020-11-14T14:09:13Z', '2021-09-26T17:33:40Z', '2020-11-09T17:03:37Z', '2020-04-15T13:48:07Z', '2013-12-27T11:34:33Z', '2014-03-14T11:47:21Z', '2013-12-28T04:04:33Z', '2016-02-13T05:15:55Z', '2021-03-30T11:53:47Z', '2021-02-22T00:18:18Z', '2021-05-29T17:54:42Z', '2021-07-27T21:30:03Z', '2019-11-16T22:29:49Z', '2019-06-06T22:35:39Z', '2020-02-01T18:51:27Z', '2019-08-15T00:29:37Z', '2011-09-06T08:23:45Z', '2011-08-25T06:28:33Z', '2011-08-21T08:54:43Z', '2011-11-04T05:12:04Z', '2020-03-07T19:55:59Z', '2019-10-28T19:09:54Z', '2021-04-16T18:32:05Z', '2019-09-27T22:52:35Z', '2020-01-13T15:58:47Z', '2020-01-19T12:01:45Z', '2020-11-13T06:03:37Z', '2020-06-07T01:57:39Z', '2019-10-19T17:30:47Z', '2019-10-10T00:04:02Z', '2020-10-27T21:42:28Z', '2021-06-17T14:01:09Z', '2021-06-01T15:27:52Z', '2019-08-13T01:46:22Z', '2020-10-03T13:57:51Z', '2020-07-12T14:47:16Z', '2021-04-27T19:20:43Z', '2021-08-16T23:46:11Z', '2021-06-06T04:39:58Z', '2020-12-02T23:24:26Z', '2018-12-27T15:16:55Z', '2018-12-28T17:48:26Z', '2018-12-27T17:39:57Z', '2018-12-27T22:05:41Z', '2018-05-19T19:03:45Z', '2018-05-19T19:28:17Z', '2018-05-19T19:25:24Z', '2018-05-20T01:02:13Z', '2019-02-10T20:51:42Z', '2019-01-06T00:09:49Z', '2021-05-26T11:30:10Z', '2021-07-14T22:22:04Z', '2018-03-10T01:45:06Z', '2018-03-10T02:54:52Z', '2018-03-10T13:27:15Z', '2018-03-10T05:53:36Z', '2021-06-22T12:50:07Z', '2021-08-03T19:57:47Z', '2021-06-22T18:52:40Z', '2021-09-06T17:32:40Z', '2020-12-12T10:35:32Z', '2021-02-25T13:20:24Z', '2020-12-13T12:51:56Z', '2021-02-02T01:09:14Z', '2020-09-27T05:02:24Z', '2020-09-23T11:52:18Z', '2020-09-20T14:36:42Z', '2020-09-20T20:57:28Z', '2017-09-04T01:15:30Z', '2017-10-05T13:24:15Z', '2017-08-31T15:03:50Z', '2017-09-11T16:09:38Z', '2015-02-15T20:13:23Z', '2015-02-27T15:38:11Z', '2015-02-15T17:17:29Z', '2015-02-18T01:16:09Z']
import tweepy
from tweepy import OAuthHandler
from textblob import TextBlob
import plotly.graph_objects as go
from utils import (
youtube_authenticate,
get_video_details,
print_video_infos,
search
)
class TwitterClient(object):
def __init__(self):
# attempt authentication
try:
apiKey = '1oILHQ7zAdvdu1XaJoAZkvUY7'
apiSecret = 'j449aCLnyKJhqTU84PB2AarTdAw9CWhLcUc0iBMZjm2veKfk8o'
accessToken = '1214015320395960320-CQBr65Cno6XjDL2wlnSThYx7R516BZ'
accessSecret = 'I63R3znoVQLPEM79i1laSJzjbmLOKLlKP97hN0VvvzLkI'
# create OAuthHandler object
self.auth = OAuthHandler(apiKey, apiSecret)
# set access token and secret
self.auth.set_access_token(accessToken , accessSecret)
# create tweepy API object to fetch tweets
self.api = tweepy.API(self.auth)
except:
print("Error: Authentication Failed")
def getSentiment(self, tweet):
# create TextBlob object of passed tweet text
analysis = TextBlob(tweet)
# set sentiment
if analysis.sentiment.polarity > 0:
return 'positive'
elif analysis.sentiment.polarity < 0:
return 'negative'
else :
return 'neutral'
def get_tweets(self, query, count, u):
# empty list to store parsed tweets
tweets = []
try:
# call twitter api to fetch tweets
fetched_tweets = self.api.search_tweets(q=query, count=count, until = u)
# parsing tweets one by one
for tweet in fetched_tweets:
# empty dictionary to store required params of a tweet
parsed_tweet = {}
# saving text of tweet
parsed_tweet['text'] = tweet.text
# saving sentiment of tweet
parsed_tweet['sentiment'] = self.getSentiment(tweet.text)
# appending parsed tweet to tweets list
if tweet.retweet_count > 0:
# if tweet has retweets, ensure that it is appended only once
if parsed_tweet not in tweets:
tweets.append(parsed_tweet)
else:
tweets.append(parsed_tweet)
# return parsed tweets
return tweets
except tweepy.TweepError as e:
print("Error : " + str(e))
def get_comments(youtube, **kwargs):
return youtube.commentThreads().list(
part="snippet",
**kwargs
).execute()
def main():
# create TwitterClient object
tweetapi = TwitterClient()
# calling function to get tweets
tweets = tweetapi.get_tweets(query = 'South China Sea', count = 200, u='2021-11-01')
# put positive tweets, negative tweets, and neutral in lists
ptweets = [tweet for tweet in tweets if tweet['sentiment'] == 'positive']
ntweets = [tweet for tweet in tweets if tweet['sentiment'] == 'negative']
neutweets = [tweet for tweet in tweets if tweet['sentiment'] == 'neutral']
# youtube analysis
# authenticate to YouTube API
input = "South China Sea"
youtube = youtube_authenticate()
# search for the query 'python' and retrieve 2 items only
response = search(youtube, q=input, maxResults=5)
items = response.get("items")
pnn = [0,0,0]
time = []
for item in items:
# get the video ID
video_id = item["id"]["videoId"]
params = {
'videoId': video_id,
'maxResults': 2,
'order': 'relevance', # default is 'time' (newest)
}
# get the video details
video_response = get_video_details(youtube, id=video_id)
# print the video details
print_video_infos(video_response)
print(video_id)
# show comments
n_pages = 2
for i in range(n_pages):
response = get_comments(youtube, **params)
items = response.get("items")
if not items:
break
#pnn = [0,0,0]
for item in items:
comment = item["snippet"]["topLevelComment"]["snippet"]["textDisplay"]
updated_at = item["snippet"]["topLevelComment"]["snippet"]["updatedAt"]
like_count = item["snippet"]["topLevelComment"]["snippet"]["likeCount"]
comment_id = item["snippet"]["topLevelComment"]["id"]
print(f"""\
Comment: {comment}
Likes: {like_count}
Updated At: {updated_at}
==================================\
""")
text = TextBlob(comment)
print(text.sentiment)
print(text.sentiment.polarity)
time.append(updated_at)
if text.polarity < 0:
polarity = "Negative"
pnn[1] += 1
elif text.polarity > 0:
polarity = "Positive"
pnn[0] += 1
else:
polarity = "Neutral"
pnn[2] += 1
if "nextPageToken" in response:
# if there is a next page
# add next page token to the params we pass to the function
params["pageToken"] = response["nextPageToken"]
else:
# must be end of comments!!!!
break
posPosts = pnn[0] + len(ptweets)
negPosts = pnn[1] + len(ntweets)
neuPosts = pnn[2] + len(neutweets)
#dislaying them on a plotly pie chart
pChart = go.Figure(data=[go.Pie(labels=['Positive Posts','Negative Posts', 'Neutral'], values=[posPosts, negPosts, neuPosts])])
pChart.update_layout(title_text="Proportion of Positive and Negative Posts on the South China Sea")
pChart.show()
if __name__ == "__main__": main()
Title: Bilateral Operations in the South China Sea with Japan Maritime Self-Defense Force
Description: SOUTH CHINA SEA (Oct. 30, 2021) U.S. Navy Ticonderoga-class guided-missile cruiser USS Shiloh (CG 67), U.S. Navy Ticonderoga-class guided-missile cruiser USS Lake Champlain (CG 57), U.S. Navy Nimitz-class aircraft carrier USS Carl Vinson (CVN 70), U.S. Navy Arleigh Burke-class guided-missile destroyer USS Milius (DDG 69), Japan Maritime Self-Defense Force (JMSDF) Murasame-class destroyer JS Murasame (DD 101), and JMSDF Izumo-class helicopter destroyer JS Kaga (DDH 184) transit together in the South China Sea, Oct. 30, 2021. Elements of U.S. Navy Carrier Strike Group (CSG) 1 and JMSDF are conducting bilateral operations in the South China Sea. (U.S. Navy video by Mass Communication Specialist 2nd Class Haydn N. Smith)
Channel Title: U.S. Navy
Publish time: 2021-11-04T10:59:27Z
Duration: 47
Number of comments: 18
Number of likes: 199
Number of dislikes: 4
Number of views: 2475
4k5weKUBxd8
Comment: Semper Fi from an old Marine Sergeant.
Likes: 6
Updated At: 2021-11-04T11:35:28Z
==================================
Sentiment(polarity=0.1, subjectivity=0.2)
0.1
Comment: Where are these other fence sitting country's at? Always usa uk Japan ect leading the pak in the face of communist agresion.
Likes: 2
Updated At: 2021-11-04T13:18:48Z
==================================
Sentiment(polarity=-0.125, subjectivity=0.375)
-0.125
Comment: That’s a nice aircraft carrier, I mean helicopter destroyer
Likes: 1
Updated At: 2021-11-04T11:00:41Z
==================================
Sentiment(polarity=0.14375, subjectivity=0.84375)
0.14375
Comment: The view from the seahawk never gets old
Likes: 0
Updated At: 2021-11-04T12:27:59Z
==================================
Sentiment(polarity=0.1, subjectivity=0.2)
0.1
Title: 3 USS Connecticut Officials Sacked Over South China Sea Crash; US Navy Loses Key Undersea Combatant
Description: The US Navy has fired the leadership team of USS Connecticut after the South China Sea accident. The nuclear-powered submarine had hit an undersea mountain while being submerged in the disputed South China Sea. The top three leaders were aboard the USS Connecticut when it collided with an undersea mountain on October 2. According to reports, the submarine did not exercise as much caution as necessary and was travelling faster than it should have. Reports also said that the submarine was traveling in an area that was not well charted. The US Navy said in a statement said that the leadership team could have prevented the mishap by adhering to procedures.
#USSubmarine #USNavy #USSConnecticut
Crux is your daily dose of the big, viral and relevant news in a few minutes. It’s your ultimate guide to staying informed on the latest in politics, international relations, sports, entertainment and social media
Follow CRUX on Instagram (@crux.india): https://bit.ly/3qSFx1K
Follow CRUX on Facebook: https://bit.ly/2Lte7iF
#GetCloserToTheNews with latest headlines on politics, sports and entertainment on news18.com https://bit.ly/2Y4QccL
Also watch:
Crux One Take: https://bit.ly/3oNaLWf
Crux Files: https://bit.ly/3mnbnjW
Crux BTS: https://bit.ly/3oCjbQE
Channel Title: CRUX
Publish time: 2021-11-05T11:00:19Z
Duration: 4:4
Number of comments: 459
Number of likes: 850
Number of dislikes: 32
Number of views: 51361
doYlbxWOI5g
Comment: in every hollywood movie there is someone who doesn't follow his superiors command and protocols and brave enough to get victorious guess what doesn't happen in real life 👀
Likes: 51
Updated At: 2021-11-05T11:49:46Z
==================================
Sentiment(polarity=0.3333333333333333, subjectivity=0.6)
0.3333333333333333
Comment: The damage must be pretty serious for the top 3 officers to be sacked.
Likes: 40
Updated At: 2021-11-05T12:38:49Z
==================================
Sentiment(polarity=0.1388888888888889, subjectivity=0.7222222222222222)
0.1388888888888889
Comment: Sacked 3 spies, they join their adversary
Likes: 22
Updated At: 2021-11-05T12:15:11Z
==================================
Sentiment(polarity=0.0, subjectivity=0.0)
0.0
Comment: POV: your on the USS Connecticut: "your good, your good, your good, your good, aaaaaaand stop. <b>THUD</b> "dont worry capt' we'll buff out those scratches later"
Likes: 39
Updated At: 2021-11-05T11:30:48Z
==================================
Sentiment(polarity=0.7, subjectivity=0.6000000000000001)
0.7
Title: U.S. Submarine In South China Sea Collides With Unknown Object
Description: The U.S. Navy says one of its attack submarines struck an unknown object while submerged in the South China Sea. Nearly a dozen sailors were hurt, but they’re all expected to be OK.
» Subscribe to TODAY: http://on.today.com/SubscribeToTODAY
» Watch the latest from TODAY: http://bit.ly/LatestTODAY
About: TODAY brings you the latest headlines and expert tips on money, health and parenting. We wake up every morning to give you and your family all you need to start your day. If it matters to you, it matters to us. We are in the people business. Subscribe to our channel for exclusive TODAY archival footage & our original web series.
Connect with TODAY Online!
Visit TODAY's Website: http://on.today.com/ReadTODAY
Find TODAY on Facebook: http://on.today.com/LikeTODAY
Follow TODAY on Twitter: http://on.today.com/FollowTODAY
Follow TODAY on Instagram: http://on.today.com/InstaTODAY
#SouthChinaSea #Submarine #Military
Channel Title: TODAY
Publish time: 2021-10-08T12:45:01Z
Duration: 47
Number of comments: 289
Number of likes: 180
Number of dislikes: 38
Number of views: 81316
IrE4mHubHpo
Comment: Quickly repaint and sell it to Australia and tell them it is 100% new.
Likes: 91
Updated At: 2021-10-08T15:52:20Z
==================================
Sentiment(polarity=0.23484848484848483, subjectivity=0.4772727272727273)
0.23484848484848483
Comment: I guess the sub captain wants an excuse so he doesn't get demoted.
Likes: 18
Updated At: 2021-10-08T18:08:45Z
==================================
Sentiment(polarity=0.07500000000000001, subjectivity=0.07500000000000001)
0.07500000000000001
Comment: The stealth technology on the sub was so advanced that even they didn't even know where they were 😅😂🤣
Likes: 12
Updated At: 2021-10-13T03:37:47Z
==================================
Sentiment(polarity=0.4, subjectivity=0.6)
0.4
Comment: The poor submarine may have hit The Dragon Palace in the South China Sea. This is a million-year-old building. It's older than Atlantis. Its owner is more prominent than Poseidon.😉😉😉
Likes: 41
Updated At: 2021-10-11T01:06:53Z
==================================
Sentiment(polarity=0.19166666666666665, subjectivity=0.6083333333333334)
0.19166666666666665
Title: Probing Nuke Sub Crash Or China’s Underwater Nuke Tests? Why US Flew Spy Planes Over South China Sea
Description: US special purpose aircraft may have reportedly been seen over South China Sea region. A Beijing-based think tank cited satellite images to report five American reconnaissance planes operating in the area over the weekend. A maritime think tank in Beijing said it is rare for the WC-135 to come to the South China Sea region.
#southchinasea #nuketests #indiachinatensions
Follow CRUX on Instagram (@crux.india): https://bit.ly/3qSFx1K
Follow CRUX on Facebook: https://bit.ly/2Lte7iF
#GetCloserToTheNews with latest headlines on politics, sports and entertainment on news18.com https://bit.ly/2Y4QccL
Also watch:
Crux One Take: https://bit.ly/3oNaLWf
Crux Files: https://bit.ly/3mnbnjW
Crux BTS: https://bit.ly/3oCjbQE
Channel Title: CRUX
Publish time: 2021-11-02T13:30:01Z
Duration: 3:43
Number of comments: 156
Number of likes: 870
Number of dislikes: 40
Number of views: 51970
66yBNPt6yXA
Comment: Now china trying to care about the marine environment, what a big joke. 😂
Likes: 41
Updated At: 2021-11-03T02:47:44Z
==================================
Sentiment(polarity=0.0, subjectivity=0.1)
0.0
Comment: Now China building underwater city to claim it as their own part of history. 😂
Likes: 51
Updated At: 2021-11-02T13:43:39Z
==================================
Sentiment(polarity=0.6, subjectivity=1.0)
0.6
Comment: Trying to detect Godzilla !🐊
Likes: 6
Updated At: 2021-11-02T17:15:20Z
==================================
Sentiment(polarity=0.0, subjectivity=0.0)
0.0
Comment: They are monitoring the troop levels , as i suspect they a building up for an invasion or at least making a agressive stance similar to how the russians build up on baltic borders. keep in mind there are two season windows to invade taiwan fall and spring. most militaries think china wont be ready for another 5 years but that it with a traditional beach invasion. It would be much easier to insert troops to secure a landing zone then hold it. with the amount of planes and drones china could surpress the taiwanese military long enough to establish a defendable beachhead. From there china can field 10 to every 1 american ship in the reigon with allies maybe 3 to 4. it comes down to weather china thinks it can maintain a longer term conflict against America and likely many nato memebers. I think both sides have accepted conflict will occur and are things are moving quicker than the americans would like.
Likes: 0
Updated At: 2021-11-04T17:40:50Z
==================================
Sentiment(polarity=0.08531746031746032, subjectivity=0.43849206349206343)
0.08531746031746032
Title: Flight Operations in the South China Sea Aboard USS Carl Vinson (CVN 70)
Description: SOUTH CHINA SEA (Oct. 7, 2021) Sailors assigned to Nimitz-class aircraft carrier USS Carl Vinson (CVN 70) and Carrier Air Wing (CVW) 2 conduct night-time flight operations on the ship's flight deck, Oct. 7, 2021. Carl Vinson Carrier Strike Group is on a scheduled deployment in the U.S. 7th Fleet area of operations to enhance interoperability through alliances and partnerships while serving as a ready-response force in support of a free and open Indo-Pacific region. (U.S. Navy video by Mass Communication Specialist 3rd Class Jeff D. Kempton)
Channel Title: U.S. Navy
Publish time: 2021-10-26T11:52:16Z
Duration: 2:2
Number of comments: 102
Number of likes: 502
Number of dislikes: 12
Number of views: 64779
Jl-QYZvRYAE
Comment: Best navy in the world by far, keep it up.
Likes: 17
Updated At: 2021-10-26T17:12:20Z
==================================
Sentiment(polarity=0.55, subjectivity=0.65)
0.55
Comment: Night operations on a carrier deck look very difficult.
Likes: 12
Updated At: 2021-10-27T06:39:27Z
==================================
Sentiment(polarity=-0.65, subjectivity=1.0)
-0.65
Comment: I liked night ops, Marines. Completely different of course being on dirt but the dark always gave me somewhat of a comforting feeling
Likes: 1
Updated At: 2021-10-30T09:59:22Z
==================================
Sentiment(polarity=0.15, subjectivity=0.6)
0.15
Comment: If war does break out they will be the first involved. God bless them.
Likes: 11
Updated At: 2021-10-27T00:38:10Z
==================================
Sentiment(polarity=0.25, subjectivity=0.3333333333333333)
0.25